5ef62b775807d205a737e56a5b14ba9f6167a2ec,fabric/fabric-commands/src/main/java/org/fusesource/fabric/commands/ContainerCreateSsh.java,ContainerCreateSsh,doExecute,#,54

Before Change


        .sshRetries(sshRetries)
        .password(password)
        .proxyUri(proxyUri != null ? proxyUri : fabricService.getMavenRepoURI())
        .zookeeperUrl(fabricService.getZookeeperUrl());

        CreateContainerMetadata[] metadatas = fabricService.createContainers(args);
        // display containers

After Change


        .sshRetries(sshRetries)
        .password(password)
        .proxyUri(proxyUri != null ? proxyUri : fabricService.getMavenRepoURI())
        .zookeeperUrl(fabricService.getZookeeperUrl())
        .jvmOpts(jvmOpts);

        CreateContainerMetadata[] metadatas = fabricService.createContainers(args);
        // display containers